home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 6
/
FM Towns Free Software Collection 6.iso
/
ms_dos
/
mos
/
source
/
mos101.c
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS (detected)
UTF-8
Wrap
C/C++ Source or Header
|
1993-07-08
|
326 b
|
20 lines
/*
*
* MOS101 : マウスドライバの動作開始
*
*/
#include <stdio.h>
#include <dos.h>
unsigned int MOS_init(void) {
union REGS inregs, outregs;
struct SREGS segregs;
segread(&segregs);
inregs.x.ax=0x0000;
int86x(0x99,&inregs,&outregs,&segregs);
return (unsigned int)outregs.h.ah;
}